home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Scope / Scope Disk #078 (199x)(Scope PD)(US)[WB].zip / Scope Disk #078 (199x)(Scope PD)(US)[WB].adf / Start / Part3 < prev    next >
Text File  |  1989-06-29  |  4KB  |  88 lines

  1.  
  2.                               Hard Drive Startup
  3.  
  4.  
  5.   Well finally!!  Jeez, can you believe that bunch of lunatics I been
  6. dealing with??  Remember when that dumb, pimply kid in the back raised his
  7. hand and asked "Uh, just where IS the Audio.device, Mr. BenchMaster?".
  8. Haw haw haw..thought I'd die!  And what I particularly liked was the drool
  9. on the blond kid's face in the front row when I uttered that most magical
  10. of computer incantations..."ceee deee..deee hayytch zzeerroooo..."
  11.  
  12.                                        *
  13.  
  14.   Well, the first thing to do is to throw away everything you've read so
  15. far.  The old Primary Objective of getting the buffers up and running is
  16. obsolete..FaccII will now get loaded down in the middle with the rest of
  17. the gang.  Primary Focus is now:  Get the hard drive recogized!  We
  18. want to "CD dh0:" as soon as possible, of course, but it's not necessary.
  19. We can still be on df0 and run things from the hard drive using the full
  20. pathnames.
  21.  
  22.   Standing in front of that objective is the fact that one of our Select
  23. files has to be "df0", so we can pop up just in df0 and not bother with the
  24. time needed for BindDrivers and Mount, like if we quickly want to Ed
  25. something in df1.  Also, since BindDrivers and Mount use up their fair
  26. share of memory, there would be the odd game or animation that would
  27. require every little oodle.  You'll also want it for misc. testing.
  28.  
  29.   So your s file "startup-sequence" would still read something like:
  30.  
  31.                      Select df0 Bench dh0 RamBench BareBench Paint
  32.                      EndCLI > nil:
  33.  
  34.  
  35.   The "df0" file reads "NewCLI".  The rest start off with the following:
  36.  
  37.                      BindDrivers
  38.                      Mount dh0:
  39.                      dh0:c/CD dh0:
  40.  
  41.   Note how we used the hard drive's CD command by using the full pathname.
  42. We need to do that until we've safely got the c directory assigned to the
  43. hard drive.  So next would be "dh0:c/Assign c: dh0:c".  At that point you
  44. should be able to drop the full pathnames for the commands as it'll be
  45. looking in dh0's c directory instead.
  46.  
  47.   The Select scriptfile "dh0" is composed of the above three lines then a
  48. "dh0:c/NewCLI" to pop up a window, and that's it.
  49.  
  50.   My hard drive came with a program call DefDisk that did the five major
  51. assigns for me; yours might have come with something similar.  Throw it away
  52. if it did, it does more harm than good.  Conversely put, Assign, no matter
  53. how many of them, with a fat AddBuffers or FaccII in front of it, just
  54. blows the doors off DefDisk.  On top of that, DefDisk is about 6,000 bytes
  55. if I remember right, whereas Assign is 2,500, and I'll take the difference,
  56. thank you.  And it only does the five main directories so you STILL have to
  57. use Assign command anyways!  Sigh.
  58.  
  59.   I tend to cram LoadWb up near the front of the startup so as to get the
  60. disk accessing over with as quickly as possible.  After a year of floppies,
  61. there's just nothing like that quiet purr that follows those first few
  62. commands...
  63.  
  64.                                        *
  65.  
  66.   Well, guess that's about it.  Hope you picked up a tip or two along the
  67. way..it's really a shame Commodore didn't give the st-seq HALF the attention
  68. they gave, for instance, the IconEd.  The DOS books aren't to be blamed, of
  69. course; to them it's just another scriptfile.  I mean heck, it only
  70. completely makes or breaks the entire system..why does it need more than,
  71. say, half a paragraph at best??
  72.  
  73.   It probably doesn't.  I made it all up.
  74.  
  75.   I just felt like writing.
  76.  
  77.                                        *
  78.  
  79.  
  80.   Stay loose.
  81.  
  82.  
  83.  
  84.                                  **  The BenchMaster  **
  85.  
  86.  
  87.  
  88.